home *** CD-ROM | disk | FTP | other *** search
/ Mac Magazin/MacEasy 43 / Mac Magazin and MacEasy Magazine CD - Issue 43.iso / Software / Multimedia / Sound / PlayerPRO 4.6 Dev.Kit / MADH Library 4.6 / BeOS Examples / mainMADSimple.h < prev    next >
Encoding:
C/C++ Source or Header  |  1997-02-25  |  279 b   |  18 lines  |  [TEXT/EDIT]

  1. #include "RDriver.h"
  2. #include "DriverClass.h"
  3.  
  4. #ifndef __MAINMADH__
  5. #define __MAINMADH__
  6.  
  7. class MyApp : public BApplication
  8. {
  9.     public:
  10.                             MyApp(ulong signature);
  11.                             ~MyApp();
  12.     virtual void RefsReceived(BMessage *msg);
  13.     
  14.             MADDriverClass    *myMADDriverClass;
  15.             
  16. };
  17.  
  18. #endif